home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wil4c10.zip / NEWS16._B_ < prev    next >
Text File  |  1997-07-26  |  641b  |  31 lines

  1. #
  2. # Borland makefile for NEWS [Win16]
  3. # Requires WIL16.DLL & WIL16.LIB
  4. #
  5. # To use: "make -f news16._B_"
  6. #
  7.  
  8. CCFLAGS = -c
  9.  
  10. news.exe: news.res news.obj about.obj async.obj paint.obj str.obj news.def wil16.lib
  11.    tlink -c -n -Tw  c0ws @news.rsp,news,news,mathws cws import wil16,news,news
  12.    rlink news.res news.exe
  13.  
  14. news.res: news.rc
  15.    brcc news.rc
  16.  
  17. about.obj: about.c about.h
  18.    bcc $(CCFLAGS)  about.c
  19.  
  20. async.obj: async.c async.h
  21.    bcc $(CCFLAGS)  async.c
  22.  
  23. news.obj: news.c wil.h
  24.    bcc $(CCFLAGS)  news.c
  25.  
  26. paint.obj: paint.c paint.h
  27.    bcc $(CCFLAGS)  paint.c
  28.  
  29. str.obj: str.c str.h
  30.    bcc $(CCFLAGS)  str.c  
  31.